home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / rarian-sk-get-content-list < prev    next >
Text File  |  2009-10-22  |  399b  |  23 lines

  1. #! /bin/sh
  2.  
  3. # Simple wrapper to make calling scrollkeeper-get-cl easier
  4. # Copied and edited from scrollkeeper source tree
  5.  
  6. usage()
  7. {
  8.     cat <<EOF
  9. Usage: `basename $0` <LOCALE>
  10. EOF
  11.  
  12.     exit $1
  13. }
  14.  
  15. if test $# -ne 1; then
  16.     usage 1
  17. fi
  18.  
  19. # Assume we're installed in the same place as get-cl
  20. # If it ain't in the normal path, this is needed
  21. `dirname $0`/rarian-sk-get-cl $1 scrollkeeper_cl.xml
  22.  
  23. exit $?